home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / window / winclip / exam128.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-12  |  249 b   |  11 lines

  1.   #include "window.h"
  2.  
  3.   main()
  4.   {
  5.     int row,col;
  6.     MoveCursor(10,15);
  7.     GetCursorPosition(&row,&col,0);
  8.     WindowInitializeSystem();
  9.     VideoPrintf("\nThe row of the cursor is %d\nThe column is %d",
  10.                  row,col);
  11.   }